go.mod: bump github.com/docker/docker, docker/ci v28.5.0-dev#13093
Closed
thaJeztah wants to merge 1 commit intodocker:mainfrom
Closed
go.mod: bump github.com/docker/docker, docker/ci v28.5.0-dev#13093thaJeztah wants to merge 1 commit intodocker:mainfrom
thaJeztah wants to merge 1 commit intodocker:mainfrom
Conversation
3a677c9 to
8732a2c
Compare
7b36de6 to
1d92b9e
Compare
3277735 to
97ac679
Compare
Testing the transitional "v28.5" release, which updates the v28.x version to migrate to the new moby/api and moby/client modules. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
97ac679 to
e9e4e6d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Testing the transitional "v28.5" release, which updates the v28.x
version to migrate to the new moby/api and moby/client modules.
testing;
in this variant, buildx has not been updated, and no local changes were made to either compose or buildx. Without this transitional package, compose fails to build if other dependencies (buildx in this case) have not transitioned to the new modules;
This variant aliases the old API package to the new module, so the API package only contains aliases (except for some things that should be pinned);
tree vendor/github.com/docker/docker/api vendor/github.com/docker/docker/api ├── README.md ├── common.go ├── swagger-gen.yaml ├── swagger.yaml └── types ├── aliases.go ├── auxprogress │ └── aliases.go ├── blkiodev │ └── aliases.go ├── build │ └── aliases.go ├── checkpoint │ └── aliases.go ├── common │ └── aliases.go ├── container │ └── aliases.go ├── events │ └── aliases.go ├── filters │ └── aliases.go ├── image │ └── aliases.go ├── mount │ └── aliases.go ├── network │ └── aliases.go ├── registry │ └── aliases.go ├── swarm │ └── aliases.go ├── system │ └── aliases.go ├── time │ └── aliases.go ├── types_deprecated.go ├── versions │ └── aliases.go └── volume └── aliases.goUnder the hood, it's already using the new module (
github.com/moby/moby/api);tree -d vendor/github.com/moby/moby/api vendor/github.com/moby/moby/api ├── stdcopy └── types ├── auxprogress ├── blkiodev ├── build ├── checkpoint ├── common ├── container ├── events ├── filters ├── image ├── mount ├── network ├── registry ├── storage ├── strslice ├── swarm │ └── runtime ├── system ├── time ├── versions └── volume(I'm using vendoring purely to show / illustrate what's used)
What I did
Related issue
(not mandatory) A picture of a cute animal, if possible in relation to what you did